Getting blank output when i run "Get-PublicFolderItemStatistics"
I want to check the replication status in Exchange server 2010 environment. I set the Public folder replication from Exchange 2010 to another Exchange server 2010.When i run below command i am getting blank report. Even i am not getting any error messages.
Get-PublicFolderItemStatistics -Identity "\abtspotc" | Select Subject,LastModificationTime,HasAttachments,ItemType,MessageSize | Out-File "C:\temp\test.txt"
But when i run below commands i am getting an output.
Get-PublicFolderStatistics -Server "wpf500c" -ResultSize Unlimited | Select Name, FolderPath,DatabaseName | Export-Csv -Path "C:\temp\wpf500c.csv"
Get-PublicFolder '\' -GetChildren
Could you please help me out.
Thanks
September 16th, 2011 6:28pm
All of the properties you have selected in the first one are for a public folder item. Get-PublicFolderItemStatistics returns statistical information about the items in the folder. It does not return the items, so you cannot select properties
of items.
Well, actually you can - but you're going to get back an object with those properties, and all the values will be null. If you give select-object the name of a property that doesn't exist on the input object, it will create the output object
with that property, and a null value.
[string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "
Free Windows Admin Tool Kit Click here and download it now
September 16th, 2011 7:21pm
Hi, Thanks. I got it.
September 16th, 2011 7:48pm